iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 19
0
Modern Web

Angular初期筆記系列 第 19

DAY19-Angular6之實現父到子傳值

  • 分享至 

  • xImage
  •  

新增一個 component

angular cli 建立 component 網址
https://github.com/angular/angular-cli/wiki/generate-component

cmd
-----
ng generate component [name]

[name]→你想要取的 component 名稱,不用加[]

https://ithelp.ithome.com.tw/upload/images/20181029/20107754GOs06ody4R.png
component 的建立 跟 所在位置有關連(紅線位置),若為專案初始位置,建立的 component 就會在 app 資料夾底下

https://ithelp.ithome.com.tw/upload/images/20181029/20107754cKpvHzSDJK.png
這邊可以看到 新增一個 component 他會先建立一個 資料夾再將檔案新增至此,最後修改 app.module.ts

https://ithelp.ithome.com.tw/upload/images/20181029/20107754HEIgABTo67.png
Angular 幫我們自動匯入 新的 component 並加入到 declarations

父到子傳值

app\app.component.ts(父)
-----
export class AppComponent {
    title = '測試專案';
}
app\app.component.html(父)
-----
<app-test1 [fTitle]="title"></app-test1>
src\app\test1\test1.component.ts(子)
-----
export class Test1Component implements OnInit {
    @Input() fTitle;

    constructor() { }

    ngOnInit() {
    }
}

上面的 @Input ,也可以在 @Component 內 的 Inputs 內匯入
可以參考下列文章
https://ithelp.ithome.com.tw/articles/10188383

// property 綁定原來的名稱
@Input() 原名稱: string;

// 當 component 安裝在 template,property value 綁定一個不同的 property name
@Input(原名稱) 使用名稱: string;
https://angular.io/api/core/Input

src\app\test1\test1.component.html(子)
-----
<p>
    {{fTitle}}
</p>

顯示
https://ithelp.ithome.com.tw/upload/images/20181029/20107754mAaIL5OiVZ.png

參考來源

https://angular.io/api/core/Input


上一篇
DAY18-Angular6之表單-簡易Reactive Form
下一篇
DAY20-Angular6之實現子上父
系列文
Angular初期筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言